home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / trinoo.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  111 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10288);
  10.  script_version ("$Revision: 1.10 $");
  11.  script_cve_id("CAN-2000-0138");
  12.  
  13.  name["english"] = "Trin00 Detect";
  14.  name["francais"] = "Detection de Trin00";
  15.  
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. The remote host appears to be running
  20. Trin00, which is a trojan that can be 
  21. used to control your system or make it 
  22. attack another network (this is 
  23. actually called a distributed denial
  24. of service attack tool)
  25.  
  26. It is very likely that this host
  27. has been compromised
  28.  
  29. Solution : Restore your system from backups,
  30.        contact CERT and your local
  31.        authorities
  32.  
  33. Risk factor : Critical";
  34.  
  35.  
  36.  
  37.  desc["francais"] = "
  38. Le systeme distant semble faire tourner
  39. trin00 qui peut etre utilisΘ pour prendre 
  40. le controle de celui-ci ou pour attaquer un 
  41. autre rΘseau (outil de dΘni de service 
  42. distribuΘ)
  43.  
  44. Il est trΦs probable que ce systeme a ΘtΘ
  45. compromis
  46.  
  47. Solution : reinstallez votre systΦme α partir
  48.        des sauvegardes, et contactez le CERT
  49.        et les autoritΘs locales
  50.        
  51. Facteur de risque : Critique";
  52.  
  53.  
  54.  script_description(english:desc["english"], francais:desc["francais"]);
  55.  
  56.  summary["english"] = "Detects the presence of trin00";
  57.  summary["francais"] = "Detecte la prΘsence de trin00";
  58.  
  59.  script_summary(english:summary["english"], francais:summary["francais"]);
  60.  
  61.  script_category(ACT_GATHER_INFO);
  62.  
  63.  
  64.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  65.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  66.  family["english"] = "Backdoors";
  67.  family["francais"] = "Backdoors";
  68.  script_family(english:family["english"], francais:family["francais"]);
  69.  
  70.  
  71.  exit(0);
  72. }
  73.  
  74. #
  75. # The script code starts here
  76. #
  77.  
  78.  
  79. command = string("png l44adsl");
  80. pong = string("PONG");
  81.  
  82. ip  = forge_ip_packet(ip_hl:5, ip_v:4,   ip_off:0,
  83.                      ip_id:9, ip_tos:0, ip_p : IPPROTO_UDP,
  84.                      ip_len : 20, ip_src : this_host(),
  85.                      ip_ttl : 255);
  86.            
  87. length = 8 + strlen(command);             
  88. udpip = forge_udp_packet(ip : ip,
  89.                  uh_sport : 1024,    
  90.                          uh_dport : 27444,
  91.              uh_ulen : length,
  92.              data : command);
  93.              
  94.             
  95. trg = get_host_ip();
  96. me  = this_host();
  97. pf = string("udp and src host ", trg, " and dst host ", me, " and dst port 31335");
  98. rep = send_packet(udpip, pcap_filter:pf, pcap_active:TRUE);                 
  99. if(rep)
  100. {
  101.   dstport = get_udp_element(udp:rep, element:"uh_dport");
  102.   if(dstport == 31335)
  103.   { 
  104.    security_hole(port:27444, protocol:"udp");
  105.   }
  106. }
  107.  
  108.  
  109.  
  110.  
  111.